home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Monstr3a.h < prev    next >
C/C++ Source or Header  |  1999-01-29  |  1KB  |  40 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Monstr3aH
  3. #define Monstr3aH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published:    // IDE-verwaltete Komponenten
  14.     TButton *Button1;
  15.     TButton *Button2;
  16.     TButton *Button3;
  17.     TGroupBox *GroupBox2;
  18.     TLabel *Label1;
  19.     TLabel *Label2;
  20.     TLabel *Label3;
  21.     TGroupBox *GroupBox1;
  22.     TImage *Image1;
  23.     void __fastcall FormCreate(TObject *Sender);
  24.     void __fastcall Button2Click(TObject *Sender);
  25.     void __fastcall Button1Click(TObject *Sender);
  26.     void __fastcall Button3Click(TObject *Sender);
  27.     
  28.     
  29.     
  30.     
  31.     
  32. private:    // Benutzer-Deklarationen
  33. public:        // Benutzer-Deklarationen
  34.     __fastcall TForm1(TComponent* Owner);
  35. };
  36. //---------------------------------------------------------------------------
  37. extern TForm1 *Form1;
  38. //---------------------------------------------------------------------------
  39. #endif
  40.